home *** CD-ROM | disk | FTP | other *** search
/ Internet Info 1994 March / Internet Info CD-ROM (Walnut Creek) (March 1994).iso / networking / ip / ka9q / bmdist.arc / MAKEFILE < prev    next >
Text File  |  1988-05-27  |  799b  |  39 lines

  1. #
  2. #    Makefile for Bdale's Mailer
  3. #    
  4. #    for more info see bm.doc and smtp.doc in the documentation package
  5. #    if you change the makefile, do a make clean before you do a make.
  6. #    This makefile for Turboc C using ndmake.
  7. #
  8.  
  9. CFLAGS= -ms -O -Z -d -DMSDOS -Dprintf=cprintf
  10. LDFLAGS= -ms
  11. HDRS=    bm.h header.h
  12. OBJS=    main.obj send.obj pc.obj bmutil.obj version.obj header.obj \
  13.     files.obj getopt.obj
  14.  
  15. all:    bm.exe 
  16.     
  17. bm.exe:  $(OBJS)
  18.     tcc $(LDFLAGS) -ebm $(OBJS)
  19.  
  20. clean:
  21.     del *.obj
  22.  
  23. clobber: clean
  24.     del *.exe
  25. #
  26. # dependencies - please keep up to date!
  27. #
  28. bmutil.obj:    bmutil.c bm.h header.h
  29. pc.obj:    pc.c
  30. main.obj:     main.c bm.h
  31. send.obj:    send.c bm.h
  32. header.obj:    header.c header.h
  33. files.obj:    files.c
  34. getopt.obj:    getopt.c
  35.  
  36. .c.obj:
  37.     tcc -c $(CFLAGS) $<
  38. .SUFFIXES: .exe .obj .c .asm
  39.